home *** CD-ROM | disk | FTP | other *** search
/ Deep Throat Girls 5 / Deep Throat Girls 5.iso / mac / MAC.Dir / 00027_startmovie.ls < prev    next >
Encoding:
Text File  |  1997-02-09  |  649 b   |  29 lines

  1. on startMovie
  2.   global repeet, pictcount
  3.   set repeet to 0
  4.   set pictcount to 0
  5.   when keyDown then nothing
  6.   set the exitLock to 1
  7.   set the soundEnabled to 1
  8.   set the soundLevel to 7
  9.   puppetSound(1, "INTRO")
  10.   if the quickTimePresent = 0 then
  11.     alert(" QuickTime must be installed" & RETURN & "  to PLAY this game. If you" & RETURN & "are having trouble installing" & RETURN & "QuickTime, consult 'Read Me'.")
  12.     stopMovie()
  13.   end if
  14.   puppetTempo(120)
  15.   set the colorDepth to 32
  16.   if the colorDepth < 32 then
  17.     set the colorDepth to 16
  18.   end if
  19. end
  20.  
  21. on stopMovie
  22.   puppetSound(0)
  23.   go(10)
  24. end
  25.  
  26. on quitmovie
  27.   go(1, "DTG5:IMPULSE.DIR")
  28. end
  29.